Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/solygambas/html-css-javascript-projects/068-music player/

index.html /cody/solygambas/html-css-javascript-projects/068-music player/index.html
404 Views
0 Comments
<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio -->

<!DOCTYPE html>
<html lang="en">
<head>

script.js /cody/solygambas/html-css-javascript-projects/068-music player/script.js
276 Views
0 Comments
const musicContainer = document.getElementById("music-container");
const playButton = document.getElementById("play");
const pre
style.css /cody/solygambas/html-css-javascript-projects/068-music player/style.css
218 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
box-sizing: border-box;
}

body